/* ================= PRODUCTS SECTION ================= */

.card-products-section {
    position: relative;
    padding: clamp(60px, 12vh, 100px) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

/* Decorative Background */
.card-products-section::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -5%;
    width: clamp(500px, 60vw, 800px);
    height: clamp(500px, 60vw, 800px);
    background: radial-gradient(circle, rgba(30, 95, 216, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card-products-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.card-products-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vh, 80px);
}

.card-products-label {
    display: inline-block;
    color: #1E5FD8;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 22px;
    background: rgba(30, 95, 216, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(30, 95, 216, 0.25);
}

.card-products-title {
    color: #0B2C6B;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.card-products-title .highlight {
    background: linear-gradient(135deg, #1E5FD8 0%, #6FA8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.card-products-subtitle {
    color: #495057;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.product-card-whatsapp {
    z-index: 1 !important;
    position: absolute !important;
    width: 45px !important;
    height: 45px !important;
    right: 20px !important;
    top: 20px !important;
    border-radius: 50%;
}

/* Products Grid */
.card-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: clamp(30px, 5vw, 50px);
    margin-bottom: clamp(60px, 12vh, 100px);
}

/* Product Card */
.card-product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(30, 95, 216, 0.15);
    box-shadow: 0 10px 35px rgba(11, 44, 107, 0.1);
    transition: all 0.4s ease;
}

.card-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 95, 216, 0.2);
    border-color: rgba(30, 95, 216, 0.3);
}

/* Product Image Section */
.card-product-image {
    position: relative;
    height: clamp(200px, 30vh, 280px);
    overflow: hidden;
    background: linear-gradient(135deg, #0B2C6B 0%, #1E5FD8 100%);
}

.card-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.card-product-card:hover .card-product-image img {
    transform: scale(1.08);
    opacity: 1;
}

.card-product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    color: #0B2C6B;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(111, 168, 255, 0.4);
}

/* Product Content */
.card-product-content {
    padding: clamp(25px, 4vw, 40px);
}

.card-product-category {
    color: #1E5FD8;
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-product-category::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1E5FD8;
    border-radius: 50%;
}

.card-product-name {
    color: #0B2C6B;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-product-description {
    color: #495057;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Product Features */
.card-product-features {
    margin-bottom: 25px;
}

.card-features-title {
    color: #0B2C6B;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 15px;
}

.card-features-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.card-features-list li {
    color: #495057;
    font-size: clamp(14px, 1.6vw, 16px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(30, 95, 216, 0.05);
    border-radius: 10px;
    border-left: 3px solid #6FA8FF;
    transition: all 0.3s ease;
}

.card-features-list li:hover {
    background: rgba(30, 95, 216, 0.1);
    transform: translateX(5px);
}

.card-features-list li::before {
    content: '✓';
    color: white;
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Shipment Info */
.card-shipment-info {
    background: linear-gradient(135deg, rgba(165, 201, 255, 0.15) 0%, rgba(111, 168, 255, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(30, 95, 216, 0.2);
}

.card-shipment-title {
    color: #0B2C6B;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-shipment-title::before {
    content: '🚚';
    font-size: 1.2em;
}

.card-shipment-modes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.card-shipment-mode {
    background: white;
    color: #0B2C6B;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    border: 1px solid rgba(30, 95, 216, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-shipment-mode::before {
    content: '✈';
}

.card-shipment-mode:nth-child(2)::before {
    content: '🚢';
}

/* ================= PAYMENT TERMS SECTION ================= */

.payment-section {
    position: relative;
    padding: clamp(60px, 12vh, 100px) 5%;
    background: linear-gradient(135deg, #0B2C6B 0%, #123A8C 50%, #1E5FD8 100%);
    overflow: hidden;
}

/* Floating Orbs */
.payment-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: clamp(400px, 50vw, 700px);
    height: clamp(400px, 50vw, 700px);
    background: radial-gradient(circle, rgba(165, 201, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.payment-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: clamp(350px, 45vw, 600px);
    height: clamp(350px, 45vw, 600px);
    background: radial-gradient(circle, rgba(111, 168, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.payment-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Payment Header */
.payment-header {
    text-align: center;
    margin-bottom: clamp(45px, 8vh, 60px);
}

.payment-label {
    display: inline-block;
    color: #A5C9FF;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 22px;
    background: rgba(165, 201, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(165, 201, 255, 0.3);
}

.payment-title {
    color: #FFFFFF;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-title .highlight {
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Payment Terms Grid */
.payment-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(40px, 8vh, 60px);
}

.payment-term-card {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(25px, 4vw, 35px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.payment-term-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(165, 201, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.payment-icon {
    width: clamp(55px, 8vw, 70px);
    height: clamp(55px, 8vw, 70px);
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: clamp(26px, 4vw, 32px);
    box-shadow: 0 8px 20px rgba(111, 168, 255, 0.4);
    transition: all 0.3s ease;
}

.payment-term-card:hover .payment-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(165, 201, 255, 0.6);
}

.payment-term-title {
    color: #FFFFFF;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
}

.payment-term-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
}

/* Process Timeline */
.payment-process {
    background: rgba(255, 255, 255, 0.08);
    padding: clamp(30px, 5vw, 45px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.process-title {
    color: #FFFFFF;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(15px, 2.5vw, 25px);
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    background: rgba(165, 201, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    color: #0B2C6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(111, 168, 255, 0.4);
}

.step-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    line-height: 1.5;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {

    .products-section,
    .payment-section {
        padding: clamp(40px, 10vh, 60px) 5%;
    }

    .shipment-modes {
        flex-direction: column;
    }

    .shipment-mode {
        width: 100%;
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ================= COMPLIANCE & SHIPPING ================= */

.compliance-shipping-section {
    position: relative;
    padding: clamp(45px, 8vh, 75px) 5%;
    background: linear-gradient(135deg, #E8F1FF 0%, #D4E7FF 50%, #C2DCFF 100%);
    overflow: hidden;
}

.compliance-shipping-section::before,
.compliance-shipping-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.compliance-shipping-section::before {
    top: -12%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 95, 216, .1), transparent 70%);
}

.compliance-shipping-section::after {
    bottom: -15%;
    left: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(111, 168, 255, .08), transparent 70%);
}

.compliance-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* Header */

.compliance-header {
    text-align: center;
    margin-bottom: clamp(35px, 6vh, 55px);
}

.compliance-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1E5FD8;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(30, 95, 216, .12);
    border: 1px solid rgba(30, 95, 216, .25);
    margin-bottom: 12px;
}

.compliance-title {
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 700;
    color: #0B2C6B;
    line-height: 1.2;
    margin-bottom: 12px;
}

.compliance-title .highlight {
    background: linear-gradient(135deg, #1E5FD8, #6FA8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compliance-subtitle {
    font-size: clamp(14px, 1.8vw, 17px);
    color: #495057;
    max-width: 760px;
    margin: auto;
    line-height: 1.5;
}

/* Grid */

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 4vw, 35px);
}

/* Cards */

.compliance-card,
.shipping-card {
    background: rgba(255, 255, 255, .92);
    padding: clamp(22px, 3vw, 32px);
    border-radius: 18px;
    border: 1px solid rgba(30, 95, 216, .15);
    box-shadow: 0 8px 25px rgba(11, 44, 107, .1);
    transition: .3s ease;
}

.compliance-card:hover,
.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(30, 95, 216, .2);
}

/* Card Header */

.card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(30, 95, 216, .15);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A5C9FF, #6FA8FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-title {
    font-size: clamp(18px, 2.4vw, 22px);
    color: #0B2C6B;
    font-weight: 700;
}

/* Lists */

.compliance-list,
.shipping-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.compliance-list li,
.shipping-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    font-size: clamp(14px, 1.7vw, 16px);
    background: rgba(30, 95, 216, .06);
    border-left: 4px solid #6FA8FF;
    border-radius: 10px;
    transition: .3s ease;
}

.compliance-list li::before,
.shipping-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A5C9FF, #6FA8FF);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.compliance-list li:hover,
.shipping-list li:hover {
    background: rgba(30, 95, 216, .12);
}

/* Note */

.compliance-note {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(165, 201, 255, .15);
    border-radius: 10px;
    border: 1px solid rgba(30, 95, 216, .2);
}

.compliance-note p {
    font-size: 14px;
    font-weight: 600;
    color: #0B2C6B;
}

/* CTA */

.compliance-cta {
    margin-top: clamp(40px, 7vh, 60px);
    padding: clamp(28px, 5vh, 40px);
    text-align: center;
    background: linear-gradient(135deg, #0B2C6B, #1E5FD8);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(30, 95, 216, .3);
}

.cta-heading {
    font-size: clamp(20px, 3vw, 26px);
    color: #fff;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 20px;
    max-width: 650px;
    margin-inline: auto;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 11px 24px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #A5C9FF, #6FA8FF);
    color: #0B2C6B;
}

.cta-btn-secondary {
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
}

/* Mobile */

@media (max-width: 640px) {
    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}